| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386 |
- <script>
- import {page} from "$app/state";
- import {PUBLIC_API_URL} from "$env/static/public";
- import {onMount} from "svelte";
- import DashboardNav from "../../dashboard/DashboardNav.svelte";
- import Message from "./Message.svelte";
- let game = $state(page.data.data.game);
- let character = $state(page.data.data.character);
- let sessions = $state(page.data.data.sessions.sort((a, b) => a.started_at > b.started_at ? 1 : -1));
- let turns = $state(page.data.data.turns);
- let tokensRemaining = $state(page.data.data.tokens_remaining);
- let streaming = $state(false);
- let inputText = $state("");
- const autogrow = (node) => {
- const update = () => {
- node.style.height = "auto";
- node.style.height = Math.min(node.scrollHeight, 200) + "px";
- };
- node.addEventListener("input", update);
- return { destroy: () => node.removeEventListener("input", update) };
- };
- const handleSubmit = (e) => {
- e.preventDefault();
- const text = inputText.trim();
- if (!text || streaming) return;
- inputText = "";
- sendMessage(text);
- };
- const sendMessage = async (text)=>{
- let newTurn = {user_text: text};
- turns.push(newTurn);
- const response = await fetch(`${PUBLIC_API_URL}/game/${game.id}/session/${sessions[0].id}/turn`, {
- method: "POST",
- headers: {
- "Content-Type": "application/json",
- "Accept-Encoding": "identity"
- },
- credentials: "include",
- body: JSON.stringify({content: text})
- });
- const reader = response.body.getReader();
- const decoder = new TextDecoder();
- let buffer = "";
- while(true){
- const {done, value} = await reader.read();
- if(done) break;
- buffer += decoder.decode(value, {stream: true});
- const lines = buffer.split("\n");
- buffer = lines.pop();
- for(let i = 0; i < lines.length; i++){
- if(!lines[i].startsWith("data:")) continue;
- const data = lines[i].slice(5).trim();
- if(data === "[DONE]") continue;
- try{
- const json = JSON.parse(data);
- const chunk = json.choices?.[0]?.delta?.content;
- if(chunk) turns[turns.length-1].llm_text += chunk;
- }catch{}
- }
- }
- streaming = false;
- }
- onMount(()=>{
- if(turns.length === 0){
- sendMessage("");
- }
- });
- </script>
- <div class="page">
- <DashboardNav />
- <div class="game-bar">
- <div class="game-bar-left">
- <div class="game-title-block">
- <span class="game-label">Adventure</span>
- <h1>{game.title}</h1>
- </div>
- <div class="divider"></div>
- <div class="character-block">
- <span class="game-label">Character</span>
- <span class="character-name">{character.name}</span>
- </div>
- </div>
- <div class="token-badge" class:token-low={tokensRemaining < 500}>
- <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
- <circle cx="12" cy="12" r="10"/>
- <path d="M12 6v12M9 9h4.5a2.5 2.5 0 0 1 0 5H9"/>
- </svg>
- {tokensRemaining.toLocaleString()} tokens
- </div>
- </div>
- <main class="messages" id="message-list">
- <div class="messages-inner">
- {#each turns as turn, i}
- {#if i !== 0}
- <Message {turn} role="user" />
- {/if}
- <Message
- {turn}
- role="llm"
- streaming={streaming && i === turns.length - 1}
- />
- {/each}
- {#if streaming}
- <div class="typing-indicator">
- <span></span><span></span><span></span>
- </div>
- {/if}
- </div>
- </main>
- <div class="composer-wrap">
- <form class="composer" onsubmit={handleSubmit}>
- <textarea
- bind:value={inputText}
- use:autogrow
- placeholder="What do you do?"
- rows="1"
- disabled={streaming}
- onkeydown={(e) => { if (e.key === "Enter" && !e.shiftKey) { e.preventDefault(); handleSubmit(e); } }}
- ></textarea>
- <button type="submit" disabled={streaming || !inputText.trim()} aria-label="Send message">
- <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round">
- <path d="M12 19V5M5 12l7-7 7 7"/>
- </svg>
- </button>
- </form>
- <p class="composer-hint">Enter to send · Shift+Enter for new line</p>
- </div>
- </div>
- <style>
- .page {
- height: 100vh;
- display: flex;
- flex-direction: column;
- background: #0b0b10;
- overflow: hidden;
- }
- /* ── Game bar ── */
- .game-bar {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0.75rem 2rem;
- border-bottom: 1px solid #1a1a26;
- background: #0d0d16;
- flex-shrink: 0;
- gap: 1rem;
- }
- .game-bar-left {
- display: flex;
- align-items: center;
- gap: 1.25rem;
- min-width: 0;
- }
- .game-label {
- display: block;
- font-size: 0.65rem;
- font-weight: 600;
- letter-spacing: 0.08em;
- text-transform: uppercase;
- color: #44445a;
- margin-bottom: 0.15rem;
- }
- h1 {
- font-size: 0.95rem;
- font-weight: 700;
- color: #e5e5ea;
- letter-spacing: -0.2px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .divider {
- width: 1px;
- height: 2rem;
- background: #1e1e2e;
- flex-shrink: 0;
- }
- .character-name {
- font-size: 0.95rem;
- font-weight: 600;
- color: #c084fc;
- }
- .token-badge {
- display: inline-flex;
- align-items: center;
- gap: 5px;
- padding: 0.35rem 0.75rem;
- border-radius: 20px;
- background: #13131e;
- border: 1px solid #1e1e2e;
- font-size: 0.78rem;
- font-weight: 600;
- color: #6b6b7a;
- white-space: nowrap;
- flex-shrink: 0;
- transition: color 0.2s, border-color 0.2s;
- }
- .token-badge.token-low {
- color: #e05555;
- border-color: rgba(224, 85, 85, 0.3);
- }
- /* ── Messages ── */
- .messages {
- flex: 1;
- overflow-y: auto;
- scroll-behavior: smooth;
- }
- .messages::-webkit-scrollbar {
- width: 6px;
- }
- .messages::-webkit-scrollbar-track {
- background: transparent;
- }
- .messages::-webkit-scrollbar-thumb {
- background: #1e1e2e;
- border-radius: 3px;
- }
- .messages-inner {
- max-width: 820px;
- margin: 0 auto;
- padding: 2rem 2rem 1rem;
- display: flex;
- flex-direction: column;
- gap: 1rem;
- }
- /* ── Typing indicator ── */
- .typing-indicator {
- display: flex;
- align-items: center;
- gap: 5px;
- padding: 0.75rem 1rem;
- background: #1a1a28;
- border: 1px solid #2a2a3a;
- border-radius: 16px;
- border-bottom-left-radius: 4px;
- width: fit-content;
- }
- .typing-indicator span {
- width: 7px;
- height: 7px;
- border-radius: 50%;
- background: #44445a;
- animation: bounce 1.2s ease-in-out infinite;
- }
- .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
- .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
- @keyframes bounce {
- 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
- 30% { transform: translateY(-5px); opacity: 1; }
- }
- /* ── Composer ── */
- .composer-wrap {
- flex-shrink: 0;
- border-top: 1px solid #1a1a26;
- background: #0d0d16;
- padding: 1rem 2rem 0.6rem;
- }
- .composer {
- max-width: 820px;
- margin: 0 auto;
- display: flex;
- align-items: flex-end;
- gap: 0.75rem;
- background: #13131e;
- border: 1px solid #2a2a3a;
- border-radius: 14px;
- padding: 0.6rem 0.6rem 0.6rem 1rem;
- transition: border-color 0.2s, box-shadow 0.2s;
- }
- .composer:focus-within {
- border-color: #5a5aff;
- box-shadow: 0 0 0 3px rgba(90, 90, 255, 0.1);
- }
- .composer textarea {
- flex: 1;
- background: none;
- border: none;
- outline: none;
- resize: none;
- font-size: 0.95rem;
- line-height: 1.6;
- color: #e5e5ea;
- font-family: inherit;
- min-height: 26px;
- max-height: 200px;
- overflow-y: auto;
- padding: 0;
- }
- .composer textarea::placeholder {
- color: #44445a;
- font-style: italic;
- }
- .composer textarea:disabled {
- opacity: 0.5;
- cursor: not-allowed;
- }
- .composer button {
- width: 36px;
- height: 36px;
- border-radius: 9px;
- border: none;
- background: #5a5aff;
- color: #fff;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- flex-shrink: 0;
- transition: background 0.15s, transform 0.1s, opacity 0.15s;
- }
- .composer button:hover:not(:disabled) {
- background: #4646e0;
- }
- .composer button:active:not(:disabled) {
- transform: scale(0.93);
- }
- .composer button:disabled {
- opacity: 0.35;
- cursor: not-allowed;
- }
- .composer-hint {
- max-width: 820px;
- margin: 0.4rem auto 0;
- font-size: 0.7rem;
- color: #2e2e44;
- text-align: right;
- padding: 0 0.25rem;
- }
- @media (max-width: 700px) {
- .game-bar { padding: 0.6rem 1rem; }
- .messages-inner { padding: 1.25rem 1rem 0.75rem; }
- .composer-wrap { padding: 0.75rem 1rem 0.5rem; }
- .game-bar-left { gap: 0.75rem; }
- .divider { display: none; }
- .character-block { display: none; }
- .composer-hint { display: none; }
- }
- </style>
|